home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer Helper 1: Phil & Dave's Excellent CD
/
Excellent CD HFS.raw
/
HyperCard
/
HyperCard 1.2.2 International
/
HyperCard Italian (T-1.2.2)
/
Stack Principali
/
Note di Rilascio (1.2.2)
/
Note di Rilascio (1.2.2)
/
card_11820.txt
< prev
next >
Wrap
Text File
|
1988-12-01
|
2KB
|
85 lines
-- card: 11820 from stack: in.2)
-- bmap block id: 0
-- flags: 0000
-- background id: 5683
-- name: showPict
-- part contents for background part 7
----- text -----
showPict
-- part contents for background part 9
----- text -----
Nuove Proprietà HyperTalk
Scheda 5 su 6
-- part contents for background part 11
----- text -----
La proprietà showPict rende la grafica della cornice o della scheda visibile (quando è TRUE) o invisibile (quando è FALSE).
-- part contents for background part 35
----- text -----
• Quando la grafica della scheda (o cornice) è nascosta e tu
provi a
(a) usare uno strumento di Disegno, o
(b) incollare un disegno,
appare una finestra di dialogo che chiede se vuoi
rendere visibile la grafica. Facendo clic su OK viene
mostrata la grafica presente; altrimenti annulli l'intera
operazione.
-- part contents for background part 8
----- text -----
set showPict of <scheda> to {TRUE|FALSE}
set showPict of <cornice> to {TRUE|FALSE}
-- part contents for background part 10
----- text -----
<scheda> è un'espressione che indica una scheda.
<cornice> identifica una cornice.
-- part contents for background part 18
----- text -----
on showPictureDemo
--fa lampeggiare 3 volte la grafica della cornice:
repeat 6 times
set showPict of this bg to¬
not(showPict of this bg)
end repeat
end showPictureDemo
-- part contents for background part 31
----- text -----
Hide Picture
Lock e Unlock Screen
Nuovi Sinonimi
Show Picture
-- part contents for background part 17
----- text -----
--mostra la grafica:
set showPict of this card to TRUE
set showPict of prev background to TRUE
set showPict of cd id 23484 to TRUE
--nascondi la grafica:
set showPict of this card to FALSE
set showPict of prev background to FALSE
set showPict of cd id 23484 to FALSE
--per avere il valore corrente di showPict:
get showPict of first card
get showPict of variabileMiaCornice
put showPict of next cd